home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / wildcat / fileq102.zip / PCPLUSEQ.ZIP / SOFTEQ1 < prev    next >
Text File  |  1993-03-06  |  1KB  |  41 lines

  1.  
  2. proc main
  3.     CHDIR "C:\wc30\eq"             ;This is necessary
  4.     SET DLDIR "c:\wc30\files\EQ"   ;This is File EQ download dir set in Makewild
  5.     transmit "ATZ^M"               ;Leave up to you...maybe not needed!
  6.     pause 2
  7.            statmsg "Dialing Software Connection"
  8.     dial "10"                 ;Dials entry # 10 from PCPLUS.DIR,default
  9.  
  10.     if not connected          ; will dial for as long as you have set and
  11.       quit                    ; will terminate if unsuccessful
  12.     endif
  13. if connected
  14.             statmsg "Waiting for login prompt"
  15. waitfor "first name" 30
  16.             if waitfor
  17.             pause 1
  18.             transmit "*Firstname Lastname Password^M"   ;Insert your name and
  19.                                                         ;password for fast
  20.                                                         ;log-on
  21.             endif
  22.  
  23. waitfor "?" 45
  24.             if waitfor
  25.             pause 1                  ;All of these entries move thru
  26.                 transmit "y"         ;the menus
  27.             endif
  28.  
  29. waitfor "?" 45
  30.             if waitfor
  31.             pause 1
  32.                 transmit "f"
  33.             endif
  34.  
  35. waitfor "?" 45
  36.             if waitfor
  37.             pause 1
  38.                 transmit "d"
  39.             endif
  40.   pause 1
  41.